home *** CD-ROM | disk | FTP | other *** search
/ The Net Power 1997 October / NET_DISC.iso / mac / HTML Editors / BBEdit / BBEdit 4.0 Demo.sit / BBEdit 4.0 Demo Folder / HTML Templates / Table Of Contents.tmpl < prev   
Text File  |  1997-03-19  |  2KB  |  76 lines

  1. <!--
  2.     This example page shows how to use named anchors to implement a
  3.     Table Of Contents for easy navigation within a single page.
  4. -->
  5.  
  6. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN">
  7. <HTML>
  8. <HEAD>
  9.  
  10. <!--
  11.     Notice that the "TITLE" here will be replaced with whatever you
  12.     type into the "Title" section of the "New Document..." dialog.
  13. -->
  14.  
  15. <TITLE>#TITLE#</TITLE>
  16.  
  17. </HEAD>
  18. <BODY>
  19.  
  20. <H1>Table Of Contents Example</H1>
  21.  
  22. This example page shows how to use named anchors to implement a Table Of
  23. Contents for easy navigation within a single page.
  24. <p>
  25.     
  26. <H2><A NAME="TOC">Table Of Contents:</A></H2>
  27. <UL TYPE=DISC>
  28.     <LI><A HREF="#whatis">What Is BBEdit?</A>
  29.     <LI><A HREF="#whygreat">Why Is BBEdit So Great?</A>
  30.     <LI><A HREF="#whouses">Who Uses BBEdit?</A>
  31.     <LI><A HREF="#moreinfo">How Can I Find Out More?</A>
  32. </UL>
  33.  
  34. <!-- The <HR> tag creates a horizontal rule, which is a convenient section divider -->
  35. <HR>
  36.  
  37. <!--
  38.     For each section, there is a named anchor tag, then the contents. The
  39.     section heading is enclosed in the named anchor tag, so that when the
  40.     user navigates to this section, the heading will appear at the top of
  41.     the screen.
  42.     
  43.     For the user's convenience, there's also a link back to the main table
  44.     of contents, and a horizontal rule separator.
  45.     
  46.     If you click on the function popup (the icon just to the right of the
  47.     pencil), BBEdit will show you all of the named anchors and headings in a
  48.     popup menu. You can jump straight to a named anchor or heading simply by
  49.     choosing it from this menu. Note that headings appear in the popup menu
  50.     with the heading level in the left-hand column; for example level two
  51.     headings have a "2" in the menu.
  52. -->
  53.  
  54. <H2><A NAME="whatis">What Is BBEdit?</A></H2>
  55. <p>
  56. <A HREF="#TOC">Table Of Contents</A>
  57. <HR>
  58.  
  59. <H2><A NAME="whygreat">Why Is BBEdit So Great?</A></H2>
  60. <p>
  61. <A HREF="#TOC">Table Of Contents</A>
  62. <HR>
  63.  
  64. <H2><A NAME="whouses">Who Uses BBEdit?</A></H2>
  65. <p>
  66. <A HREF="#TOC">Table Of Contents</A>
  67. <HR>
  68.  
  69. <H2><A NAME="moreinfo">How Can I Find Out More?</A></H2>
  70. <p>
  71. <A HREF="#TOC">Table Of Contents</A>
  72. <HR>
  73.  
  74. </BODY>
  75. </HTML>
  76.